home *** CD-ROM | disk | FTP | other *** search
- /* bt_space.c - declares some global variables */
- #include "stdio.h"
- #include "btree.h"
- #include "bt_macro.h"
-
- IX_DESC *pci ; /* refers to index descriptor */
- /* for current function call */
-
- BLOCK spare_block ; /* scratch block for splits and */
- /* compressing */
-
- int split_size = IXB_SPACE ; /* split block when it contains */
- /* more than this many bytes */
-
- int comb_size = (IXB_SPACE/2); /* combine block when it contains */
- /* fewer than this many bytes */
-
-
-